home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
F1 Licenseware
/
F1 Licenseware - Volume 1.iso
/
disks
/
080.dms
/
080.adf
/
Get_Icons.amos
/
Get_Icons.amosSourceCode
Wrap
AMOS Source Code
|
1994-01-30
|
476b
|
24 lines
'
'********************************************
' GRAB 16*16 TILES FROM IFF PICTURE
'********************************************
'
_LOAD_TILES
'
Procedure _LOAD_TILES
'
Erase 2
I=1 : X=0 : Y=0
Screen Open 4,320,256,32,Lowres
Load Iff ":Dizzy_tiles.iff",4
Screen Hide 4
For Y=0 To 240 Step 16
For X=0 To 304 Step 16
Get Icon I,X,Y To X+16,Y+16
Inc I
Next X
Next Y
Screen Close 4
Save ":tiles.abk",2
'
End Proc